runtime.linearAlloc.mapped (field)

7 uses

	runtime (current package)
		malloc.go#L2007: 	mapped uintptr // one byte past end of mapped space
		malloc.go#L2021: 	l.next, l.mapped = base, base
		malloc.go#L2032: 	if pEnd := alignUp(l.next-1, physPageSize); pEnd > l.mapped {
		malloc.go#L2035: 			n := pEnd - l.mapped
		malloc.go#L2036: 			sysMap(unsafe.Pointer(l.mapped), n, sysStat)
		malloc.go#L2037: 			sysUsed(unsafe.Pointer(l.mapped), n, n)
		malloc.go#L2039: 		l.mapped = pEnd